home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / docdemos / doubledemo.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-02-09  |  132 b   |  9 lines

  1. program DoubleDemo;
  2. var
  3.   A: Double;  { There is nothing special with `Double'. }
  4.   B: Real;
  5. begin
  6.   A := Pi;
  7.   A := B
  8. end.
  9.